.ach-card {
    background: #009fe3;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Force every image to stay same shape */
.ach-img {
    width: 100%;
    aspect-ratio: 3 / 2;   /* FIX: perfect visible size */
    object-fit: cover;
    object-position: top center; /* shows face area */
}

/* Content box */
.ach-content {
    padding: 12px;
    color: white;
}

.ach-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

/* Small screen fix */
@media (max-width: 576px) {
    .ach-img {
        aspect-ratio: 4 / 3;   /* a bit taller for mobile */
        object-fit: cover;
        object-position: top center;
    }
}
